home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Starter / Source / CommandView.m < prev    next >
Text File  |  1995-06-12  |  233b  |  14 lines

  1.  
  2. #import "CommandView.h"
  3. #import "Controller.h"
  4.  
  5. @implementation CommandView
  6.  
  7. - (BOOL)performKeyEquivalent:(NXEvent *)theEvent 
  8. {    
  9.     return [[NXApp delegate] getInspectorPanelWithScreen:
  10.       (theEvent->data.key.charCode)-'1'];
  11. }
  12.  
  13. @end
  14.